home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-04-15 | 532 b | 27 lines | [TEXT/CWIE] |
- unit misc;
-
- interface
-
- uses
- Types;
-
- function GetResString (res,i: integer):Str255;
-
- implementation
-
- uses
- TextUtils;
-
- function GetResString (res,i: integer):Str255;
- { Just a wrapper around GetIndString. This way the string is returned }
- { a a function result rather than as a var parameter. }
- { }
- { 5/26/97 Jude Giampaolo }
- var
- s: Str255;
- begin
- GetIndString(s, res, i);
- GetResString := s;
- end;
-
- end.